home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / menu_esc.arc / MENU-DOC < prev    next >
Text File  |  1990-09-25  |  7KB  |  127 lines

  1.  
  2.                          Electronic Solutions Company
  3.  
  4.      This package should contain two files : MENU-ESC.EXE  and  MENU-DOC.
  5.  
  6.      This is distributed as shareware, and if you feel that it is of value
  7.      to you, please send a check or money order for $15.00 to :
  8.  
  9.                                      ESC
  10.                                 PO Box 54504
  11.                             Lexington, KY  40555
  12.  
  13.      By sending a check, you will be a registered user, and receive updates
  14.      by mail as they are available.  You will also be placed on our mailing
  15.      list and receive information on other software available from ESC. You
  16.      can also suggest changes you would like to see in the program.  If the
  17.      F11 and F12 keys do not work from your menu, your DOS cannot recognize
  18.      them, but you will still be able to use the other keys as advertisied.
  19.  
  20.      Versions of this program are also available which are optimized for an
  21.      80286 or 80386 system. Register and request more information on these.
  22.  
  23.      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  24.  
  25.                                     MENU-ESC
  26.  
  27.                                   DOCUMENTATION
  28.  
  29.      This program was written and designed to be easy to use, so this guide
  30.      is very short.
  31.  
  32.      PURPOSE : MENU-ESC is a menu program, allowing users to use a function
  33.                key to perform tasks such as loading programs. It also has a
  34.                three level security system, allowing a user to control both
  35.                access to the menu and access to individual menu selections.
  36.                Menu and key titles are programmable, as are steps performed.
  37.  
  38.      INSTALLATION : Simply copy MENU-ESC.EXE to the desired directory. Your
  39.                system must have an EGA color compatible monitor. 
  40.  
  41.      EXECUTION : Type MENU-ESC from the DOS command line. You may rename the 
  42.                program if desired, and is often done to allow multiple menus
  43.                in one directory, where a key on one menu causes another menu
  44.                to load. The program can accept a command-line parameters, or
  45.                be called normally. Two parameters are available :
  46.  
  47.                MENU-ESC 2 - Causes the Alternate Menu to be displayed first.
  48.  
  49.                MENU-ESC S - Causes the program to load in the Secured Mode.
  50.  
  51.                While the program is loading, you may press the desired key
  52.                to execute, and it will automatically perform the steps for
  53.                that key when finished loading. 
  54.  
  55.      OVERVIEW : There are 2 menus within the program, Primary and Alternate,
  56.                and the display is switched between them by pressing Page Up
  57.                or Page Down.  With either menu displayed, the keys for both
  58.                are active, so keys F1 - F12 will be used with the Alternate
  59.                Menu displayed on the screen, and keys Alt-F1 - Alt-F12 will
  60.                be used even with the Primary Menu on screen. The Home, End,
  61.                and Escape keys are on both menus, so there are 27 different
  62.                keys available to be programmed. 
  63.  
  64.      PROGRAMMING : To enter the Programming mode, press Tab. You will first
  65.                be asked to enter the Level 3 security code, which is ESC in
  66.                capital letters. The Level 2 security code is Esc, and Level
  67.                1 is esc. When you register, you will receive information on
  68.                how to change these security codes, which should be done for
  69.                preventing unauthorized re-programming.
  70.  
  71.                After entering the proper security code, you will be given a
  72.                chance to change the menu title of whichever menu was active
  73.                when you pressed Tab. Press Return when finished. The top of
  74.                the menu will display - Press the Key to Program.
  75.  
  76.  
  77.      KEY PROGRAMMING : At this point, you can press any of the 27 keys that
  78.                are available. You will be offered an opportunity to re-name
  79.                the displayed title for that key. Press Return when finished
  80.                and you will be asked to edit the steps to be performed when
  81.                that key is pressed. 
  82.  
  83.                The number of steps can be from 1 to 10, and blank steps are
  84.                skipped. The steps can be any valid DOS command, and what is
  85.                actually being programmed is a batch file.  Once programmed,
  86.                pressing the key will cause a DOS batch file called TEMP.BAT 
  87.                to be created, and will then exit and automatically run TEMP
  88.                from DOS.
  89.  
  90.                The program does not check the validity of steps you program
  91.                because you can do virtually anything you can in DOS. Rather
  92.                than simply performing DOS commands, you can program the key
  93.                to call other batch files or run any of a multitude of other
  94.                programs.
  95.  
  96.                To make an individual key a secure key, put the level number
  97.                of security you want in the last character spot of the first
  98.                step for that key. Note that there must be a command for the
  99.                step instead of spaces at the beginning.
  100.  
  101.  
  102.                                     EXAMPLES
  103.  
  104.      The example below would cause a          This example would change to
  105.      Level 2 security check, and then         Subdirectory D:\WS5, run WS,
  106.      re-load the menu program.                and re-load the menu on exit.
  107.  
  108.      Step 1  @ECHO OFF          2             Step 1  @ECHO OFF          
  109.      Step 2  MENU-ESC                         Step 2  D:                  
  110.      Step 3                                   Step 3  CD\WS5              
  111.      Step 4                                   Step 4  WS                  
  112.      Step 5                                   Step 5  MENU-ESC            
  113.  
  114.      The example below would cause a          The example below changes to
  115.      Level 3 security check, run the          subdirectory \NEW, copies all
  116.      batch file DOWN.BAT, then load a         the .ZIP files to D:\ZIP, 
  117.      second menu program, displaying          changes to subdirectory D:\ZIP
  118.      the Alternate Menu initially.            and finally runs the directory.
  119.  
  120.      Step 1  @ECHO OFF          3             Step 1  @ECHO OFF          2
  121.      Step 2  CALL DOWN                        Step 2  CD\NEW            
  122.      Step 3  MENU-TWO 2                       Step 3  XCOPY *.ZIP D:\ZIP 
  123.      Step 4                                   Step 4  D:              
  124.      Step 5                                   Step 5  CD\ZIP              
  125.      Step 6                                   Step 6  DIR                 
  126.  
  127.